// Licensed to the Apache Software Foundation (ASF) under one// or more contributor license agreements. See the NOTICE file// distributed with this work for additional information// regarding copyright ownership. The ASF licenses this file// to you under the Apache License, Version 2.0 (the// "License"); you may not use this file except in compliance// with the License. You may obtain a copy of the License at//// http://www.apache.org/licenses/LICENSE-2.0//// Unless required by applicable law or agreed to in writing, software// distributed under the License is distributed on an "AS IS" BASIS,// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.// See the License for the specific language governing permissions and// limitations under the License.// Code generated by the FlatBuffers compiler. DO NOT EDIT.package flatbufimport (flatbuffers)// / Time is either a 32-bit or 64-bit signed integer type representing an// / elapsed time since midnight, stored in either of four units: seconds,// / milliseconds, microseconds or nanoseconds.// /// / The integer `bitWidth` depends on the `unit` and must be one of the following:// / * SECOND and MILLISECOND: 32 bits// / * MICROSECOND and NANOSECOND: 64 bits// /// / The allowed values are between 0 (inclusive) and 86400 (=24*60*60) seconds// / (exclusive), adjusted for the time unit (for example, up to 86400000// / exclusive for the MILLISECOND unit).// / This definition doesn't allow for leap seconds. Time values from// / measurements with leap seconds will need to be corrected when ingesting// / into Arrow (for example by replacing the value 86400 with 86399).typeTimestruct { _tab flatbuffers.Table}func ( []byte, flatbuffers.UOffsetT) *Time { := flatbuffers.GetUOffsetT([:]) := &Time{} .Init(, +)return}func ( *Time) ( []byte, flatbuffers.UOffsetT) { ._tab.Bytes = ._tab.Pos = }func ( *Time) () flatbuffers.Table {return ._tab}func ( *Time) () TimeUnit { := flatbuffers.UOffsetT(._tab.Offset(4))if != 0 {returnTimeUnit(._tab.GetInt16( + ._tab.Pos)) }return1}func ( *Time) ( TimeUnit) bool {return ._tab.MutateInt16Slot(4, int16())}func ( *Time) () int32 { := flatbuffers.UOffsetT(._tab.Offset(6))if != 0 {return ._tab.GetInt32( + ._tab.Pos) }return32}func ( *Time) ( int32) bool {return ._tab.MutateInt32Slot(6, )}func ( *flatbuffers.Builder) { .StartObject(2)}func ( *flatbuffers.Builder, TimeUnit) { .PrependInt16Slot(0, int16(), 1)}func ( *flatbuffers.Builder, int32) { .PrependInt32Slot(1, , 32)}func ( *flatbuffers.Builder) flatbuffers.UOffsetT {return .EndObject()}
The pages are generated with Goldsv0.8.2. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds.